Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

mediabron: koppeling naar bijhorend informatieobject #24

Closed
rien333 opened this issue Mar 13, 2024 · 4 comments
Closed

mediabron: koppeling naar bijhorend informatieobject #24

rien333 opened this issue Mar 13, 2024 · 4 comments

Comments

@rien333
Copy link
Collaborator

rien333 commented Mar 13, 2024

Op dit moment is er geen mogelijkheid een mediabron aan een informatieobject te koppelen. Hier liepen we ook tegen aan tijdens het importeren in MAIS.

Misschien een goede uitbreiding op ORI, of een issue bij de VNG waard? Ik denk dat we in principe wel ORI conform blijven als we de koppeling naar een informatieobject volledig optioneel maken — dan zijn we simpelweg een superset van ORI.

@rien333
Copy link
Collaborator Author

rien333 commented Mar 26, 2024

Het simpelste is om dit weer gewoon via IDs te doen, trouwens.

@rien333
Copy link
Collaborator Author

rien333 commented Apr 11, 2024

Upstream issue: VNG-Realisatie/ODS-Open-Raadsinformatie#100

@lmasrarsaml
Copy link
Collaborator

Net afgestemd om <mediabron> iets aan te passen en wel als volgt:

<xsd:complexType name="mediabron">
        <xsd:sequence>
            <xsd:element name="ID" type="xsd:string" minOccurs="1" maxOccurs="1"/>
            <xsd:element name="mimeType" minOccurs="0" maxOccurs="1">
                <xsd:annotation>
                    <xsd:documentation>
                        Het MIME type van het mediabron bestand.

                        Verwachte waarde:
                          - string: Patroon `type/subtype`, bijvoorbeeld `video/mp4`
                    </xsd:documentation>
                </xsd:annotation>
                <xsd:simpleType>
                    <xsd:restriction base="xsd:string">
                        <xsd:pattern value="\w+/[-+.\w]+"/>
                    </xsd:restriction>
                </xsd:simpleType>
            </xsd:element>
            <xsd:element name="mediabronType" minOccurs="1" maxOccurs="1">
                <xsd:annotation>
                    <xsd:documentation>
                        Het soort mediabron.

                        Verwachte waarde:
                          - Keuze uit: `Video`, `Audio`, `Transcriptie`
                    </xsd:documentation>
                </xsd:annotation>
                <xsd:simpleType>
                    <xsd:restriction base="xsd:string">
                        <xsd:enumeration value="Video"/>
                        <xsd:enumeration value="Audio"/>
                        <xsd:enumeration value="Transcriptie"/>
                    </xsd:restriction>
                </xsd:simpleType>
            </xsd:element>
            <xsd:element name="URL" type="xsd:anyURI" minOccurs="0" maxOccurs="1"/>
            <xsd:element name="verwijzingMediabron" type="verwijzingInformatieobject" minOccurs="1" maxOccurs="1">
                <xsd:annotation>
                    <xsd:documentation>
                        De verwijzing naar het bestand waarin de mediabron is vastgelegd. Afhankelijk van het mediabronType (Audio, Video of Transcriptie) verschilt het verwachte bestandsformaat. Technische gegevens over het bestandsformaat kunnen worden vastgelegd in de bestandslaag in MDTO of ToPX.
                    </xsd:documentation>
                </xsd:annotation>
            </xsd:element>
            <xsd:element name="verwijzingOndertitelbestand" type="verwijzingInformatieobject" minOccurs="0" maxOccurs="1">
                <xsd:annotation>
                    <xsd:documentation>
                        Het ondertitelbestand dat gerelateerd is aan de mediabron. Veelgebruikte formaten hiervoor zijn webVTT of SubRip. Dit element kan alleen van toepassing bij een mediabron met als type Video of Audio. Technische gegevens over het bestandsformaat kunnen worden vastgelegd in de bestandslaag in MDTO of ToPX.
                    </xsd:documentation>
                </xsd:annotation>
            </xsd:element>
        </xsd:sequence>
    </xsd:complexType>

lmasrarsaml added a commit that referenced this issue Jun 25, 2024
Mediabron aangepast volgens instructie uit issue #24
@lmasrarsaml
Copy link
Collaborator

Aangepast in XSD met één verschil: verwijzing naar informatieobject gaat niet via <verwijzingInformatieobject> maar via <informatieobjectGegevens>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants