이미지 공유 샘플

이미지 공유 양식 샘플은 SharePoint에 게시되었고 완료할 프로세스(예: 검사, 규정 준수, 감사와 관련된 프로세스)에 대한 종속성일 수 있는 사진을 공유하기 위한 적응형 카드입니다. 이는 표시 전용 적응형 카드입니다.

표시 전용 적응형 카드.

입/출력 및 참고 사항

동적 토큰 이름(입력) 자리 표시자 텍스트 메모
acphotoTitle {acphotoTitle} 표시 텍스트
acTimestamp {acTimestamp} 날짜/시간 표시
acImageThumbnail {acImageThumbnail} 이미지 표시
올바른 URL로 대체해야 함
acAltText {acAltText} 접근성 대체 텍스트
{
    "$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
    "type": "AdaptiveCard",
    "version": "1.0",
    "body": [
        {
            "type": "TextBlock",
            "text": "{acphotoTitle}",
            "id": "Title",
            "size": "Large"
        },
        {
            "type": "TextBlock",
            "text": "{acTimestamp}",
            "size": "Medium",
            "weight": "Lighter"
        },
        {
            "type": "Image",
            "altText": "{acAltText}",
            "url": "{acImageThumbnail}"
        }
    ],
    "spacing": "None"
}